home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / windows / tbag32.zip / REGTBAG.PAS < prev    next >
Pascal/Delphi Source File  |  1997-03-03  |  261b  |  19 lines

  1. unit RegTBag;
  2.  
  3. interface
  4.  
  5. procedure Register;
  6.  
  7. implementation
  8.  
  9. uses
  10.   Forms, Classes, Controls, SysUtils,DsgnIntF,TBag;
  11.  
  12. procedure Register;
  13. begin
  14.   RegisterComponents('3K',[TBag32]);
  15.   RegisterComponentEditor(TBag32,TBag32Editor);
  16. end;
  17.  
  18. end.
  19.